home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / dev / src / td01_src.lha / td_r0.1 / s2 / source / eps / postscript.h < prev   
Encoding:
C/C++ Source or Header  |  1999-04-04  |  2.2 KB  |  61 lines

  1. /*
  2. **      $VER: postscript.h 1.00 (4.4.1999)
  3. **
  4. **      Creation date : 23.01.1999
  5. **
  6. **      Description       :
  7. **         Standart saver module for meshwriter.library.
  8. **         Saves the mesh as PostScript file.
  9. **
  10. **
  11. **      Written by Stephan Bielmann
  12. **
  13. */
  14.  
  15. #ifndef INCLUDE_POSTSCRIPT_H
  16. #define INCLUDE_POSTSCRIPT_H
  17.  
  18. /*************************** Includes *******************************/
  19.  
  20. /*
  21. ** Amiga includes
  22. */
  23. #include <dos/dos.h>
  24.  
  25. /*
  26. ** Project includes
  27. */
  28. #include "meshwriter_private.h"
  29.  
  30. /*************************** Functions ******************************/
  31.  
  32. /********************************************************************\
  33. *                                                                    *
  34. * Name         : write2EPS                                           *
  35. *                                                                    *
  36. * Description  : Writes a standart Encapsulated PostScript ASCII     *
  37. *                file.                                               *
  38. *                                                                    *
  39. * Arguments    : epsfile  IN : An already opened file stream.        *
  40. *                mesh     IN : Pointer to the mesh.                  *
  41. *                viewtype IN : Type of view.                         *
  42. *                drawmode IN : Drawing mode.                         *
  43. *                width    IN : Width of output media.                *
  44. *                height   IN : Height of output media.               *
  45. *                                                                    *
  46. * Return Value : RCNOERROR                                           *
  47. *                RCWRITEDATA                                         *
  48. *                                                                    *
  49. * Comment      :                                                     *
  50. *                                                                    *
  51. \********************************************************************/
  52. extern ULONG write2EPS(BPTR epsfile,TOCLMesh *mesh,
  53.                 ULONG viewtype,ULONG drawmode,
  54.                 ULONG width,ULONG height);
  55.  
  56. #endif
  57.  
  58. /************************* End of file ******************************/
  59.  
  60.  
  61.